home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / hdf / unix / hdf3_2r2.lha / HDF3.2r2 / INSTALL.TOP < prev    next >
Encoding:
Text File  |  1992-09-08  |  2.4 KB  |  69 lines

  1. #***************************************************************************
  2. #
  3. #
  4. #                         NCSA HDF version 3.2
  5. #                            August 28, 1992
  6. #
  7. # NCSA HDF Version 3.2 source code and documentation are in the public
  8. # domain.  Specifically, we give to the public domain all rights for future
  9. # licensing of the source code, all resale rights, and all publishing rights.
  10. #
  11. # We ask, but do not require, that the following message be included in all
  12. # derived works:
  13. #
  14. # Portions developed at the National Center for Supercomputing Applications at
  15. # the University of Illinois at Urbana-Champaign, in collaboration with the
  16. # Information Technology Institute of Singapore.
  17. #
  18. # THE UNIVERSITY OF ILLINOIS GIVES NO WARRANTY, EXPRESSED OR IMPLIED, FOR THE
  19. # SOFTWARE AND/OR DOCUMENTATION PROVIDED, INCLUDING, WITHOUT LIMITATION,
  20. # WARRANTY OF MERCHANTABILITY AND WARRANTY OF FITNESS FOR A PARTICULAR PURPOSE
  21. #
  22. #***************************************************************************
  23.  
  24.  
  25. All comments, suggestions, and bug reports are welcome, and
  26. should be sent to mfolk@ncsa.uiuc.edu (cc: dilg@ncsa.uiuc.edu and 
  27. sxu@ncsa.uiuc.edu).  If you don't have email, phone Mike Folk at
  28. 217-244-0647, or write to Mike Folk, NCSA, 605 E. Springfield Ave.,
  29. Champaign, IL 61801.
  30.  
  31.  
  32.  
  33.      ---------------- Invoking the Makefile ------------------ 
  34.  
  35.  
  36. In general, HDF 3.2 can be built with a single command from this 
  37. directory.  The file Makefile.template is a generic, machine independent 
  38. Makefile which you can modify if there is no Makefile already built 
  39. for your machine.
  40.  
  41. For convenience, there are also machine customized makefiles.  
  42. For example MAKE.IBM6000 is a Makefile suitable for compiling HDF
  43. on an IBM RS/6000. Assuming you are on an IBM RS/6000. Copy 
  44. MAKE.IBM6000 to Makefile and use the following commands to install
  45. different targets.
  46.  
  47. cp MAKE.IBM6000 Makefile
  48.  
  49. make 
  50.         --- builds HDF library and the C and Fortran interfaces, the 
  51.                 utilities and C and Fortran test programs.
  52.  
  53. make nofortran   
  54.         --- builds the HDF library and only the C interfaces, the
  55.                 utilities and the C test programs.
  56.  
  57. make libdf
  58.         --- builds the HDF library and the C and Fortran interfaces
  59.  
  60. make utilities
  61.         --- builds only the utility programs
  62.  
  63. make tests
  64.         --- builds all of the test programs
  65.  
  66. To omit various routines in the target, refer to the INSTALL file
  67. in the subdirectory src/.
  68.  
  69.